home *** CD-ROM | disk | FTP | other *** search
/ Workplace Effectiveness:…ecision-Making Strategies / Workplace Effectiveness: Decision-Making Strategies.iso / pc / Files / History.dxr / 00002_Navigation framework.ls < prev    next >
Encoding:
Text File  |  1998-12-16  |  583 b   |  41 lines

  1. global gMasterData, gSection, gHistoryPrintList
  2.  
  3. on GoOn
  4.   stopSound2()
  5.   case gSection of
  6.     #intro:
  7.       setUpHistory()
  8.     #graph:
  9.       leaveThisMovie()
  10.   end case
  11. end
  12.  
  13. on goBack
  14.   stopSound2()
  15.   case gSection of
  16.     #history:
  17.       goIntro()
  18.     #graph:
  19.       goBackTo28()
  20.   end case
  21. end
  22.  
  23. on leaveThisMovie
  24.   set gHistoryPrintList to the text of member "decision field 1"
  25.   if iAmActivated(gMasterData) then
  26.     getPrintData()
  27.   end if
  28.   stopSound2()
  29.   cursor(4)
  30.   go(1, "Menu1")
  31. end
  32.  
  33. on notePadButton
  34.   DoNotepad()
  35. end
  36.  
  37. on continueNext
  38.   stopSound2()
  39.   go(the frame + 1)
  40. end
  41.